home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-152.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12313);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-0660", "CAN-2002-0728");
  13.  
  14.  name["english"] = "RHSA-2002-152: libpng";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated libpng packages are available that fix a buffer overflow
  21.   vulnerability.
  22.  
  23.   The libpng package contains a library of functions for creating and
  24.   manipulating PNG (Portable Network Graphics) image format files. PNG
  25.   is a bit-mapped graphics format similar to the GIF format.
  26.  
  27.   Versions of libpng prior to 1.0.14 contain a buffer overflow in the
  28.   progressive reader when the PNG datastream contains more IDAT data than
  29.   indicated by the IHDR chunk. Such deliberately malformed datastreams would
  30.   crash applications linked to libpng such as Mozilla that use the
  31.   progressive reading feature.
  32.  
  33.   Packages within Red Hat Linux Advanced Server , such as Mozilla, make use
  34.   of the shared libpng library, therefore all users are advised to upgrade to
  35.   the errata packages which contain libpng 1.0.14. Libpng 1.0.14 is not
  36.   vulnerable to this issue and contains fixes for other bugs including a
  37.   number of memory leaks.
  38.  
  39.  
  40.  
  41.  
  42. Solution : http://rhn.redhat.com/errata/RHSA-2002-152.html
  43. Risk factor : High';
  44.  
  45.  script_description(english:desc["english"]);
  46.  
  47.  summary["english"] = "Check for the version of the libpng packages";
  48.  script_summary(english:summary["english"]);
  49.  
  50.  script_category(ACT_GATHER_INFO);
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  53.  family["english"] = "Red Hat Local Security Checks";
  54.  script_family(english:family["english"]);
  55.  
  56.  script_dependencies("ssh_get_info.nasl");
  57.  
  58.  script_require_keys("Host/RedHat/rpm-list");
  59.  exit(0);
  60. }
  61.  
  62. include("rpm.inc");
  63. if ( rpm_check( reference:"libpng-1.0.14-0.7x.3", release:"RHEL2.1") )
  64. {
  65.  security_hole(0);
  66.  exit(0);
  67. }
  68. if ( rpm_check( reference:"libpng-devel-1.0.14-0.7x.3", release:"RHEL2.1") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73.  
  74. if ( rpm_exists(rpm:"libpng-", release:"RHEL2.1") )
  75. {
  76.  set_kb_item(name:"CAN-2002-0660", value:TRUE);
  77.  set_kb_item(name:"CAN-2002-0728", value:TRUE);
  78. }
  79.  
  80. set_kb_item(name:"RHSA-2002-152", value:TRUE);
  81.